fixed typos in previous commit, added editor swapfiles to gitignore

This commit is contained in:
Aidan Hahn 2019-05-15 16:08:44 -07:00
parent 26fee4a242
commit dbcbd4dbad
No known key found for this signature in database
GPG key ID: 327711E983899316
2 changed files with 9 additions and 5 deletions

4
.gitignore vendored
View file

@ -3,3 +3,7 @@
# Ignore Gradle build output directory
build
# Ignore emacs swapfiles
\#*
.\#*

View file

@ -1,9 +1,9 @@
syntax = "proto3"
syntax = "proto3";
option java_multiple_files = true;
option java_package = "com.ajhahn.jobserv"
option java_outer_classname = "JobServProto"
option objc_class_prefix = "JSV"
option java_package = "com.ajhahn.jobserv";
option java_outer_classname = "JobServProto";
option objc_class_prefix = "JSV";
package jobserv;
@ -24,7 +24,7 @@ message NewJobMessage {
message JobStatusMessage {
int32 PID = 1;
ProcessStatus = 2;
string ProcessStatus = 2;
}
message OutputMessage {