From e7f6607fba1943c3bd85888b065b94864d6a30ae Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sun, 30 Dec 2018 17:42:53 +0000 Subject: [PATCH] update comments --- DeathSocket/Domain.fs | 4 ++-- DeathSocket/GridPainter.fs | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/DeathSocket/Domain.fs b/DeathSocket/Domain.fs index 18bc1a6..1044c5b 100644 --- a/DeathSocket/Domain.fs +++ b/DeathSocket/Domain.fs @@ -107,8 +107,8 @@ /// A Discriminated Union representing a type of image. The type refers /// to the graphics library used to read the image file. - /// The graphics library determines how the image is stored in memory - /// and the functions you can perform on it. + /// The graphics library determines how the image is read and + /// manipulated in memory and the functions you can perform on it. /// When creating an ImageType, pass in the file path of the image /// as a string. If you are on Windows or using Mono, SystemDrawing is /// the recommended choice. If you using Xamarin, SkiaSharp is the diff --git a/DeathSocket/GridPainter.fs b/DeathSocket/GridPainter.fs index 985a6e6..7240dd5 100644 --- a/DeathSocket/GridPainter.fs +++ b/DeathSocket/GridPainter.fs @@ -75,8 +75,6 @@ namespace DeathSocket let scaleLineThickness (previewDimension: double) (actualDimension: double) (lineThickness: double) = setLineThickness previewDimension actualDimension lineThickness - // NOT TESTED - /// /// Reads an (jpg or png) image and return its width and height as a /// tuple, (width * hight).