@@ -44,7 +44,7 @@ dj.config["enable_python_native_blobs"] = True
4444You can safely enable this setting if both of the following are true:
4545
4646 * All blobs in your current DataJoint databases contain only numerical arrays.
47- * You do not need to share blob data between Python and Matlab
47+ * You do not need to share blob data between Python and MATLAB.
4848
4949Otherwise, read the following explanation.
5050
@@ -54,7 +54,7 @@ and lists of strings.
5454
5555Prior to DataJoint v0.12, certain python native datatypes such as
5656dictionaries were 'squashed' into numpy structured arrays when saved into
57- blob attributes. This facilitated easier data sharing between Matlab
57+ blob attributes. This facilitated easier data sharing between MATLAB
5858and Python for certain record types. However, this created a discrepancy
5959between insert and fetch datatypes which could cause problems in other
6060portions of users pipelines.
@@ -71,14 +71,14 @@ Furthermore, DataJoint for MATLAB does not yet support unpacking native Python d
7171With ` dj.config["enable_python_native_blobs"] ` set to ` False ` (default),
7272any attempt to insert any datatype other than a numpy array will result in an exception.
7373This is meant to get users to read this message in order to allow proper testing
74- and migration of pre-0.12 pipelines to 0.11 in a safe manner.
74+ and migration of pre-0.12 pipelines to 0.12 in a safe manner.
7575
7676The exact process to update a specific pipeline will vary depending on
7777the situation, but generally the following strategies may apply:
7878
7979 * Altering code to directly store numpy structured arrays or plain
8080 multidimensional arrays. This strategy is likely best one for those
81- tables requiring compatibility with Matlab .
81+ tables requiring compatibility with MATLAB .
8282 * Adjust code to deal with both structured array and native fetched data
8383 for those tables that are populated with ` dict ` s in blobs in pre-0.12 version.
8484 In this case, insert logic is not adjusted, but downstream consumers
0 commit comments