Skip to content

Commit

Permalink
fix(docs): use an automatic link
Browse files Browse the repository at this point in the history
  • Loading branch information
RouHim committed Nov 30, 2022
1 parent 0bde22f commit 94726e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/geo_location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl Display for GeoLocation {
}

/// Converts Degrees Minutes Seconds To Decimal Degrees
/// See https://stackoverflow.com/questions/14906764/converting-gps-coordinates-to-decimal-degrees
/// See <https://stackoverflow.com/questions/14906764/converting-gps-coordinates-to-decimal-degrees>
fn dms_to_dd(dms_string: &str) -> Option<f32> {
lazy_static! {
static ref DMS_PARSE_PATTERN_1: Regex = Regex::new(
Expand Down
2 changes: 1 addition & 1 deletion src/image_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct ImageOrientation {

/// Adjusts the image to fit optimal to the browser resolution
/// Also fixes the orientation delivered by the exif image rotation
/// src: https://sirv.com/help/articles/rotate-photos-to-be-upright/
/// src: <https://sirv.com/help/articles/rotate-photos-to-be-upright/>
pub fn adjust_image(
resource_path: String,
resource_data: Vec<u8>,
Expand Down

0 comments on commit 94726e9

Please sign in to comment.