Skip to content

Commit 465fbd3

Browse files
author
Your Name
committed
Mind case when renamin
1 parent ba991ca commit 465fbd3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pyslicer/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class SlicingDice(SlicingDiceAPI):
3838
To create a column:
3939
4040
column_json = {
41-
'name': 'Pyslicer String column',
41+
'name': 'Pyslicer String Column',
4242
'description': 'Pyslicer example description',
4343
'type': 'string',
4444
'cardinality': 'low'}

pyslicer/core/helper_handler_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
32: exceptions.AccountBannedException,
3535
33: exceptions.AccountDisabledException,
3636
39: exceptions.ColumnInvalidRangeException,
37-
# column errors (40 - 59)
37+
# Column errors (40 - 59)
3838
40: exceptions.ColumnMissingParamException,
3939
41: exceptions.ColumnTypeException,
4040
42: exceptions.ColumnIntegerValuesException,

pyslicer/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def __init__(self, *args, **kwargs):
152152
self, *args, **kwargs)
153153

154154

155-
# column errors
155+
# Column errors
156156
class ColumnMissingParamException(SlicingDiceException):
157157
def __init__(self, *args, **kwargs):
158158
super(ColumnMissingParamException, self).__init__(

tests_and_examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The `examples/` directory contains one file for each [SlicingDice query](http://
1111
Each JSON file contains a list of examples, such as the following excerpt, with the following elements:
1212

1313
* `name`: Test name, as it will be printed on screen.
14-
* `columns`: [columns](http://panel.slicingdice.com/docs/#data-modeling-columns) that will be created for this test.
14+
* `columns`: [Columns](http://panel.slicingdice.com/docs/#data-modeling-columns) that will be created for this test.
1515
* `insert`: Data that will be [inserted](http://panel.slicingdice.com/docs/#data-inserting) in this test.
1616
* `query`: [Query](http://panel.slicingdice.com/docs/#data-querying) that will extract some information for the inserted data.
1717
* `expected`: Expected result message after SlicingDice executes the query. Values marked as `"ignore"` won't be taken into account to determine whether the test has passed or failed.

0 commit comments

Comments
 (0)