Skip to content

Commit a4dcb36

Browse files
committed
comments: trailing space.
1 parent 79a4d12 commit a4dcb36

24 files changed

+24
-24
lines changed

lua/compiler/languages/asm.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/c.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/cpp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/cs.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "build and run program (csc)", value = "option1" },
88
{ text = "build program (csc)", value = "option2" },

lua/compiler/languages/dart.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file (interpreted)", value = "option1" },
88
{ text = "Run program (interpreted)", value = "option2" },

lua/compiler/languages/elixir.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Mix run", value = "option2" },

lua/compiler/languages/fortran.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
-- Frontend - options displayed on telescope
5+
-- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "FPM build and run", value = "option2" },

lua/compiler/languages/fsharp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program (dotnet)", value = "option1" },
88
{ text = "Build program (dotnet)", value = "option2" },

lua/compiler/languages/go.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/java.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program (class)", value = "option1" },
88
{ text = "Build progrm (class)", value = "option2" },

lua/compiler/languages/javascript.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" }

lua/compiler/languages/kotlin.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program (class)", value = "option1" },
88
{ text = "Build program (class)", value = "option2" },

lua/compiler/languages/lua.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" },

lua/compiler/languages/make.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
local M = {}
66

7-
--- Frontend - options displayed on telescope
7+
--- Frontend - options displayed on telescope
88
M.options = {
99
{ text = "Run Makefile", value = "option1" }
1010
}

lua/compiler/languages/perl.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" },

lua/compiler/languages/python.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
local M = {}
88

9-
--- Frontend - options displayed on telescope
9+
--- Frontend - options displayed on telescope
1010
M.options = {
1111
{ text = "Run this file (interpreted)", value = "option1" },
1212
{ text = "Run program (interpreted)", value = "option2" },

lua/compiler/languages/r.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" },

lua/compiler/languages/ruby.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" },

lua/compiler/languages/rust.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
-- Frontend - options displayed on telescope
5+
-- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/sh.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
local M = {}
77

8-
--- Frontend - options displayed on telescope
8+
--- Frontend - options displayed on telescope
99
M.options = {
1010
{ text = "Run this file", value = "option1" },
1111
{ text = "Run solution", value = "option2" }

lua/compiler/languages/swift.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program", value = "option1" },
88
{ text = "Build program", value = "option2" },

lua/compiler/languages/typescript.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Run this file", value = "option1" },
88
{ text = "Run program", value = "option2" }

lua/compiler/languages/vb.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
local M = {}
44

5-
--- Frontend - options displayed on telescope
5+
--- Frontend - options displayed on telescope
66
M.options = {
77
{ text = "Build and run program (dotnet)", value = "option1" },
88
{ text = "Build program (dotnet)", value = "option2" }

lua/compiler/languages/zig.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
local M = {}
77

8-
--- Frontend - options displayed on telescope
8+
--- Frontend - options displayed on telescope
99
M.options = {
1010
{ text = "Zig build and run program", value = "option1" },
1111
{ text = "Zig build program", value = "option2" }

0 commit comments

Comments
 (0)