@@ -60,13 +60,13 @@ Queries the code index and returns at most 100 results.
6060
6161### Code Search Without Filters
6262
63- #### CLI
63+ #### Command-Line Interface
6464
6565``` commandline
6666searchcode "import module"
6767```
6868
69- #### SDK
69+ #### In Code
7070
7171``` python
7272from pprint import pprint
@@ -82,13 +82,13 @@ pprint(search)
8282
8383### Filter by Language (Java and JavaScript)
8484
85- #### CLI
85+ #### Command-Line Interface
8686
8787```` commandline
8888searchcode "import module" --languages java,javascript
8989````
9090
91- #### SDK
91+ #### In Code
9292
9393``` python
9494from searchcode import Searchcode
@@ -104,13 +104,13 @@ ___
104104
105105### Filter by Source (BitBucket and CodePlex)
106106
107- #### CLI
107+ #### Command-Line Interface
108108
109109``` commandline
110110searchcode "import module" --sources bitbucket,codeplex
111111```
112112
113- #### SDK
113+ #### In Code
114114
115115``` python
116116from searchcode import Searchcode
@@ -126,13 +126,13 @@ ___
126126
127127### Filter by Lines of Code (Between 500 and 1000)
128128
129- #### CLI
129+ #### Command-Line Interface
130130
131131``` commandline
132132searchcode "import module" --lines-of-code-gt 500 --lines-of-code-lt 1000
133133```
134134
135- #### SDK
135+ #### In Code
136136
137137``` python
138138
@@ -149,13 +149,13 @@ ___
149149
150150### With Callback Function (JSONP only)
151151
152- #### CLI
152+ #### Command-Line Interface
153153
154154``` commandline
155155searchcode "import module" --callback myCallback
156156```
157157
158- #### SDK
158+ #### In Code
159159
160160``` python
161161from searchcode import Searchcode
@@ -204,13 +204,13 @@ ___
204204
205205Returns the raw data from a code file given the code id which can be found as the ` id ` in a code search result.
206206
207- #### CLI
207+ #### Command-Line Interface
208208
209209``` commandline
210210searchode code 4061576
211211```
212212
213- #### SDK
213+ #### In Code
214214
215215#### Params
216216
0 commit comments