Current section
Files
Jump to
Current section
Files
lib/islands/client/summary/point.ex
defmodule Islands.Client.Summary.Point do
alias Islands.Coord
@spec format(Coord.row(), Coord.col()) :: String.t()
def format(row, col), do: "(#{row}, #{col})"
end