Skip to content

Commit

Permalink
Fix typos πŸ™ˆ
Browse files Browse the repository at this point in the history
  • Loading branch information
timohirt committed Jul 10, 2020
1 parent 74a1d0d commit 6b966d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hetznerdns/resource_record.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func resourceRecord() *schema.Resource {
}

func resourceRecordCreate(d *schema.ResourceData, m interface{}) error {
log.Printf("[DEBUG] Updaing resource record")
log.Printf("[DEBUG] Updating resource record")
client := m.(*api.Client)

zoneID, zoneIDNonEmpty := d.GetOk("zone_id")
Expand Down Expand Up @@ -84,7 +84,7 @@ func resourceRecordCreate(d *schema.ResourceData, m interface{}) error {

record, err := client.CreateRecord(opts)
if err != nil {
log.Printf("[ERROR] Error Creating DNs record %s: %s", opts.Name, err)
log.Printf("[ERROR] Error creating DNS record %s: %s", opts.Name, err)
return fmt.Errorf("Error creating DNS record %s: %s", opts.Name, err)
}

Expand Down

0 comments on commit 6b966d2

Please sign in to comment.