This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit a6c284cd authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Fix typo

parent 49603ed8
Branches
Tags
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!1Resolve "Metadaten konsolideren"
......@@ -87,13 +87,13 @@ public class SearchResource {
/**
* returns all programmingLanguage autocompletes for keyWord
*
* @param progammingLanguagePrefix
* @param programmingLanguagePrefix
* @return
* @throws IOException
*/
@GetMapping("/search/programmingLanguageAutoComplete")
public List<String> getProgrammingLanguageAutoComplete(@RequestParam String progammingLanguagePrefix) throws IOException {
return searchService.getProgrammingLanguageAutoComplete(progammingLanguagePrefix);
public List<String> getProgrammingLanguageAutoComplete(@RequestParam String programmingLanguagePrefix) throws IOException {
return searchService.getProgrammingLanguageAutoComplete(programmingLanguagePrefix);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment