Skip to content

Commit

Permalink
Fix formatting in String.h
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrekB416 authored Sep 19, 2023
1 parent c7b6a39 commit 66ea405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/String.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ class String

// modification
void insert(char c, unsigned int index) { return insert(String(c), index, 1); };
void insert(const String &str, unsigned int index, unsigned int length);
void replace(char find, char replace);
void insert(const String &str, unsigned int index, unsigned int length);
void replace(char find, char replace);
void replace(const String& find, const String& replace);
void remove(unsigned int index);
void remove(unsigned int index, unsigned int count);
Expand Down

0 comments on commit 66ea405

Please sign in to comment.