From 8b95430c4c9c0e5438ea6fe5122a5f7e1172aada Mon Sep 17 00:00:00 2001
From: Jennifer Hodgdon <yahgrp@poplarware.com>
Date: Fri, 13 Jun 2014 15:17:34 -0700
Subject: [PATCH] Issue #2281419 by t0xicCode, joshi.rohit100, SiliconMind: Fix
 up docs for FieldItemInterface methods

---
 core/lib/Drupal/Core/Field/FieldItemInterface.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/lib/Drupal/Core/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Field/FieldItemInterface.php
index 693a39a29f0d..cba5653e45a1 100644
--- a/core/lib/Drupal/Core/Field/FieldItemInterface.php
+++ b/core/lib/Drupal/Core/Field/FieldItemInterface.php
@@ -176,24 +176,24 @@ public function view($display_options = array());
   /**
    * Defines custom presave behavior for field values.
    *
-   * This method is called before either insert() or update() methods, and
-   * before values are written into storage.
+   * This method is called before insert() and update() methods, and before
+   * values are written into storage.
    */
   public function preSave();
 
   /**
    * Defines custom insert behavior for field values.
    *
-   * This method is called after the save() method, and before values are
-   * written into storage.
+   * This method is called during the process of inserting an entity, just
+   * before values are written into storage.
    */
   public function insert();
 
   /**
    * Defines custom update behavior for field values.
    *
-   * This method is called after the save() method, and before values are
-   * written into storage.
+   * This method is called during the process of updating an entity, just before
+   * values are written into storage.
    */
   public function update();
 
-- 
GitLab