Skip to content

Commit 4b1e129

Browse files
Merge pull request #1086 from kabilar/master
Fix docs to rename `create_virtual_module` to `VirtualModule`
2 parents 20a802e + d343ad5 commit 4b1e129

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Fixed - `.ipynb` output in tutorials is not visible in dark mode ([#1078](https://github.com/datajoint/datajoint-python/issues/1078)) PR [#1080](https://github.com/datajoint/datajoint-python/pull/1080)
66
- Changed - Readme to update links and include example pipeline image
77
- Changed - Docs to add landing page and update navigation
8+
- Fixed - Docs to rename `create_virtual_module` to `VirtualModule`
89

910
### 0.14.0 -- Feb 13, 2023
1011
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)

docs/src/concepts/existing-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ the `VirtualModule` class object:
6363

6464
```python
6565
import datajoint as dj
66-
subject = dj.create_virtual_module(module_name='subject', schema_name='db_subject')
66+
subject = dj.VirtualModule(module_name='subject', schema_name='db_subject')
6767
```
6868

6969
Now, `subject` behaves as an imported module complete with the schema object and all the

0 commit comments

Comments
 (0)