chore: remove confusing comment

This commit is contained in:
Sebastian Ullrich 2020-08-11 11:03:18 +02:00 committed by Leonardo de Moura
parent 7a7a14c8b9
commit d33b5a8ea6

View file

@ -67,9 +67,7 @@ instance ErrorCode.hasToJson : HasToJson ErrorCode :=
| ErrorCode.requestCancelled => (-32800 : Int)
| ErrorCode.contentModified => (-32801 : Int)⟩
/- Uses Option Structured because users will likely rarely distinguish between an empty
parameter array and an omitted params field.
Uses separate constructors for notifications and errors because client and server
/- Uses separate constructors for notifications and errors because client and server
behavior is expected to be wildly different for both. -/
inductive Message
| request (id : RequestID) (method : String) (params? : Option Structured)