Skip to content

Commit

Permalink
Misc typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dghart authored and dghart committed Mar 5, 2022
1 parent 15067af commit 2be597c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Plugin/builder_gnumake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ void BuilderGNUMakeClassic::CreateConfigsVariables(ProjectPtr proj, BuildConfigP
text << wxT("\n");
text << wxT("##\n");
text << wxT("## Common variables\n");
text << wxT("## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overriden using an environment variables\n");
text << wxT("## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overridden using an environment variable\n");
text << wxT("##\n");
text << wxT("AR := ") << cmp->GetTool(wxT("AR")) << wxT("\n");
text << wxT("CXX := ") << cmp->GetTool(wxT("CXX")) << wxT("\n");
Expand Down
2 changes: 1 addition & 1 deletion Plugin/builder_gnumake_default.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ void BuilderGnuMake::CreateConfigsVariables(ProjectPtr proj, BuildConfigPtr bldC
text << "\n";
text << "##\n";
text << "## Common variables\n";
text << "## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overriden using an environment variables\n";
text << "## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overridden using an environment variable\n";
text << "##\n";
text << "AR := " << cmp->GetTool("AR") << "\n";
text << "CXX := " << cmp->GetTool("CXX") << "\n";
Expand Down
2 changes: 1 addition & 1 deletion Remoty/RemotyWorkspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ void RemotyWorkspace::SetProjectActive(const wxString& name) { wxUnusedVar(name)

void RemotyWorkspace::OnDownloadFile(clCommandEvent& event)
{
clDEBUG() << "Downloading file:" << event.GetFileName() << "using accout:" << m_account.GetName() << endl;
clDEBUG() << "Downloading file:" << event.GetFileName() << "using account:" << m_account.GetName() << endl;
CHECK_EVENT(event);
auto editor = clSFTPManager::Get().OpenFile(event.GetFileName(), m_account);
if(editor) {
Expand Down
2 changes: 1 addition & 1 deletion Rust/RustPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void RustPlugin::OnRustWorkspaceFileCreated(clFileSystemEvent& event)
}
auto debug = settings.GetConfig("Debug");
if(debug) {
clDEBUG() << "Setting project perferences..." << endl;
clDEBUG() << "Setting project preferences..." << endl;
debug->SetBuildTargets({ { "build", "cargo build" }, { "clean", "cargo clean" } });
debug->SetExecutable("./target/debug/" + name);
debug->SetFileExtensions(debug->GetFileExtensions() + ";*.rs;*.toml");
Expand Down
2 changes: 1 addition & 1 deletion ctagsd/lib/ProtocolHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ size_t ProtocolHandler::do_find_definition_tags(unique_ptr<JSON>&& msg, Channel:
}

if(file_match && is_include_completion) {
clDEBUG() << "Found incldue file:" << *file_match << endl;
clDEBUG() << "Found include file:" << *file_match << endl;
for(const wxString& search_path : m_search_paths) {
wxString full_path = search_path + "/" + *file_match;
clDEBUG1() << "Trying path:" << full_path << endl;
Expand Down
2 changes: 1 addition & 1 deletion ctagsd/tests/strings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ bool CxxVariableScanner::ReadName(wxString& varname, wxString& pointerOrRef, wxS
// Now that we got the name, check if have more variables to expect
if(!GetNextToken(token)) {
// We reached EOF, but we do got the variable name
// se we return false ("don't continue") but we dont clear the name
// se we return false ("don't continue") but we don't clear the name
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion wxcrafter/SimpleHtmlListBoxWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SimpleHtmlListBoxWrapper::SimpleHtmlListBoxWrapper()
_("A wxHtmlCell which contains an hyperlink was clicked. See wxHtmlLinkEvent"));
SetPropertyString(_("Common Settings"), "wxSimpleHtmlListBox");
AddProperty(new MultiStringsProperty(
PROP_OPTIONS, _("The List Box Items. A semi-colon list of strings. This list may contain HTML fragements")));
PROP_OPTIONS, _("The List Box Items. A semi-colon list of strings. This list may contain HTML fragments")));
AddProperty(new StringProperty(
PROP_SELECTION, wxT("-1"),
_("The zero-based position of any initially selected string, or -1 if none are to be selected")));
Expand Down

0 comments on commit 2be597c

Please sign in to comment.